home *** CD-ROM | disk | FTP | other *** search
/ The Essential Home & Business Collection / The Essential Home & Business Collection.iso / 27 / 3 / 5 / HP22D5.ZIP / EXTERN / RUNAUX.ASM < prev    next >
Assembly Source File  |  1991-04-16  |  209b  |  23 lines

  1. DOSSEG
  2. .MODEL        LARGE
  3.  
  4.  
  5. .DATA
  6.  
  7. .CODE
  8.  
  9.         public        clearbuf
  10. clearbuf    proc        far
  11. top:
  12.         mov        ah,1
  13.         int        16h
  14.         jz        done
  15.         xor        ah,ah
  16.         int        16h
  17.         jmp short    top
  18. done:
  19.         retf
  20. clearbuf    endp
  21.  
  22. END
  23.